home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
source21
/
power1.dpr
< prev
next >
Wrap
Text File
|
1995-12-22
|
412b
|
19 lines
program Power1;
uses
Forms,
Benpow in 'BENPOW.PAS' {Form2},
Bookc in 'BOOKC.PAS' {Form3},
About in 'ABOUT.PAS' {AboutBox},
Bmpdlg in 'BMPDLG.PAS' {NewBMPForm};
{$R *.RES}
begin
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm3, Form3);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TNewBMPForm, NewBMPForm);
Application.Run;
end.